Skip to content

Bump the connectrelated group with 6 updates #514

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 4, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 4, 2025

Bumps the connectrelated group with 6 updates:

Package From To
@bufbuild/buf 1.46.0 1.50.0
@bufbuild/protobuf 2.2.2 2.2.3
@bufbuild/protoc-gen-es 2.2.2 2.2.3
@connectrpc/connect 2.0.0 2.0.1
@connectrpc/connect-web 2.0.0 2.0.1
@bufbuild/protoplugin 2.2.2 2.2.3

Updates @bufbuild/buf from 1.46.0 to 1.50.0

Release notes

Sourced from @​bufbuild/buf's releases.

v1.50.0

  • Add input parameter filter for use with git inputs. This sets the filter flag argument for the git fetch command.

v1.49.0

  • Fix buf plugin push --label to allow pushing a plugin with a label.
  • Add --digest-changes-only flag to buf registry {module,plugin} commit list to filter out commits that have no digest changes.
  • Fix buf plugin push --source-control-url to allow pushing a plugin with the source control url.

v1.48.0

  • Add buf registry plugin {create,delete,info,update} commands to manage BSR plugins.
  • Breaking analysis support for buf beta lsp.
  • Fix bug when using the --type flag filter for buf build where import ordering is not determinisitic.
  • Add buf plugin push command to push a plugin to the Buf Schema Registry. Only WebAssembly check plugins are supported at this time.
  • Add buf plugin update and buf plugin prune command to manage plugins in the buf.lock file. Only WebAssembly check plugins are supported at this time.
  • Add buf registry plugin commit {add-label,info,list,resolve} to manage BSR plugin commits.
  • Add buf registry plugin label {archive,info,list,unarchive} to manage BSR plugin commits.
  • Move buf registry module update to buf registry module settings update. Command buf registry module update is now deprecated.
  • Support remote check plugins in buf lint and buf breaking commands.

v1.47.2

  • Update the patch version to resolve NPM packaging issues. No command updates or user changes.

v1.47.1

  • Update the patch version to resolve NPM packaging issues. No command updates or user changes.

v1.47.0

  • Move buf registry commit to buf registry module commit. Command buf registry commit is now deprecated.
  • Move buf registry label to buf registry module label. Command buf registry label is now deprecated.
Changelog

Sourced from @​bufbuild/buf's changelog.

[v1.50.0] - 2025-01-17

  • Add input parameter filter for use with git inputs. This sets the filter flag argument for the git fetch command.

[v1.49.0] - 2025-01-07

  • Fix buf plugin push --label to allow pushing a plugin with a label.
  • Add --digest-changes-only flag to buf registry {module,plugin} commit list to filter out commits that have no digest changes.
  • Fix buf plugin push --source-control-url to allow pushing a plugin with the source control url.

[v1.48.0] - 2024-12-19

  • Add buf registry plugin {create,delete,info,update} commands to manage BSR plugins.
  • Breaking analysis support for buf beta lsp.
  • Fix bug when using the --type flag filter for buf build where import ordering is not deterministic.
  • Add buf plugin push command to push a plugin to the Buf Schema Registry. Only WebAssembly check plugins are supported at this time.
  • Add buf plugin update and buf plugin prune command to manage plugins in the buf.lock file. Only WebAssembly check plugins are supported at this time.
  • Add buf registry plugin commit {add-label,info,list,resolve} to manage BSR plugin commits.
  • Add buf registry plugin label {archive,info,list,unarchive} to manage BSR plugin commits.
  • Move buf registry module update to buf registry module settings update. Command buf registry module update is now deprecated.
  • Support remote check plugins in buf lint and buf breaking commands.

[v1.47.2] - 2024-11-14

  • Update the patch version to resolve NPM packaging issues. No command updates or user changes.

[v1.47.1] - 2024-11-14

  • Update the patch version to resolve NPM packaging issues. No command updates or user changes.

[v1.47.0] - 2024-11-13

  • Move buf registry commit to buf registry module commit. Command buf registry commit is now deprecated.
  • Move buf registry label to buf registry module label. Command buf registry label is now deprecated.
Commits

Updates @bufbuild/protobuf from 2.2.2 to 2.2.3

Release notes

Sourced from @​bufbuild/protobuf's releases.

v2.2.3

What's Changed

Full Changelog: bufbuild/protobuf-es@v2.2.2...v2.2.3

Commits

Updates @bufbuild/protoc-gen-es from 2.2.2 to 2.2.3

Release notes

Sourced from @​bufbuild/protoc-gen-es's releases.

v2.2.3

What's Changed

Full Changelog: bufbuild/protobuf-es@v2.2.2...v2.2.3

Commits

Updates @connectrpc/connect from 2.0.0 to 2.0.1

Release notes

Sourced from @​connectrpc/connect's releases.

v2.0.1

What's Changed

The only noteworthy changes in this release are enhancements made to the @​connectrpc/connect-migrate package.

The migration tool now handles additional scenarios for migrating your code to Connect v2:

Transforms new to create:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { create } from "@bufbuild/protobuf";
- const foo = new Foo();
+ const foo = create(FooSchema);

Transforms isMessage to use the schema:

import { isMessage } from "@bufbuild/protobuf";
- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
- isMessage(1, Foo); 
+ isMessage(1, FooSchema);

Transforms the static fromBinary, fromJson, and fromJsonString method calls:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { fromJson } from "@bufbuild/protobuf";
- Foo.fromJson(x, y);
+ fromJson(FooSchema, x, y);

In addition, if the message is a well-known type, the import path is updated accordingly.

For details on Connect v2, see the v2 release notes as well as the full migration guide.

New Contributors

Full Changelog: connectrpc/connect-es@v2.0.0...v2.0.1

Commits

Updates @connectrpc/connect-web from 2.0.0 to 2.0.1

Release notes

Sourced from @​connectrpc/connect-web's releases.

v2.0.1

What's Changed

The only noteworthy changes in this release are enhancements made to the @​connectrpc/connect-migrate package.

The migration tool now handles additional scenarios for migrating your code to Connect v2:

Transforms new to create:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { create } from "@bufbuild/protobuf";
- const foo = new Foo();
+ const foo = create(FooSchema);

Transforms isMessage to use the schema:

import { isMessage } from "@bufbuild/protobuf";
- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
- isMessage(1, Foo); 
+ isMessage(1, FooSchema);

Transforms the static fromBinary, fromJson, and fromJsonString method calls:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { fromJson } from "@bufbuild/protobuf";
- Foo.fromJson(x, y);
+ fromJson(FooSchema, x, y);

In addition, if the message is a well-known type, the import path is updated accordingly.

For details on Connect v2, see the v2 release notes as well as the full migration guide.

New Contributors

Full Changelog: connectrpc/connect-es@v2.0.0...v2.0.1

Commits

Updates @bufbuild/protoplugin from 2.2.2 to 2.2.3

Release notes

Sourced from @​bufbuild/protoplugin's releases.

v2.2.3

What's Changed

Full Changelog: bufbuild/protobuf-es@v2.2.2...v2.2.3

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the connectrelated group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@bufbuild/buf](https://github.com/bufbuild/buf) | `1.46.0` | `1.50.0` |
| [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf) | `2.2.2` | `2.2.3` |
| [@bufbuild/protoc-gen-es](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoc-gen-es) | `2.2.2` | `2.2.3` |
| [@connectrpc/connect](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect) | `2.0.0` | `2.0.1` |
| [@connectrpc/connect-web](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect-web) | `2.0.0` | `2.0.1` |
| [@bufbuild/protoplugin](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protoplugin) | `2.2.2` | `2.2.3` |


Updates `@bufbuild/buf` from 1.46.0 to 1.50.0
- [Release notes](https://github.com/bufbuild/buf/releases)
- [Changelog](https://github.com/bufbuild/buf/blob/main/CHANGELOG.md)
- [Commits](bufbuild/buf@v1.46.0...v1.50.0)

Updates `@bufbuild/protobuf` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.2.3/packages/protobuf)

Updates `@bufbuild/protoc-gen-es` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.2.3/packages/protoc-gen-es)

Updates `@connectrpc/connect` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v2.0.1/packages/connect)

Updates `@connectrpc/connect-web` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v2.0.1/packages/connect-web)

Updates `@bufbuild/protoplugin` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.2.3/packages/protoplugin)

---
updated-dependencies:
- dependency-name: "@bufbuild/buf"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: connectrelated
- dependency-name: "@bufbuild/protobuf"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: connectrelated
- dependency-name: "@bufbuild/protoc-gen-es"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: connectrelated
- dependency-name: "@connectrpc/connect"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: connectrelated
- dependency-name: "@connectrpc/connect-web"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: connectrelated
- dependency-name: "@bufbuild/protoplugin"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: connectrelated
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 4, 2025
Signed-off-by: Paul Sachs <psachs@buf.build>
@paul-sachs paul-sachs merged commit d3c8ef2 into main Feb 4, 2025
13 checks passed
@paul-sachs paul-sachs deleted the dependabot/npm_and_yarn/connectrelated-45a1c4ffc3 branch February 4, 2025 15:12
@paul-sachs paul-sachs mentioned this pull request May 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant